home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2001 December / pcwk12201b.iso / Wersje pelne i specjalne / Winamp 2.77 i 3.0beta / wasabi-sdk_beta1.exe / jnetlib / httpserv.h < prev    next >
C/C++ Source or Header  |  2001-10-08  |  3KB  |  90 lines

  1. /*
  2.  
  3.   Nullsoft WASABI Source File License
  4.  
  5.   Copyright 1999-2001 Nullsoft, Inc.
  6.  
  7.     This software is provided 'as-is', without any express or implied
  8.     warranty.  In no event will the authors be held liable for any damages
  9.     arising from the use of this software.
  10.  
  11.     Permission is granted to anyone to use this software for any purpose,
  12.     including commercial applications, and to alter it and redistribute it
  13.     freely, subject to the following restrictions:
  14.  
  15.     1. The origin of this software must not be misrepresented; you must not
  16.        claim that you wrote the original software. If you use this software
  17.        in a product, an acknowledgment in the product documentation would be
  18.        appreciated but is not required.
  19.     2. Altered source versions must be plainly marked as such, and must not be
  20.        misrepresented as being the original software.
  21.     3. This notice may not be removed or altered from any source distribution.
  22.  
  23.  
  24.   Brennan Underwood
  25.   brennan@nullsoft.com
  26.  
  27. */
  28.  
  29. /*
  30. ** JNetLib
  31. ** Copyright (C) 2001 Nullsoft, Inc.
  32. ** Author: Justin Frankel
  33. ** File: httpserv.h - JNL interface for doing HTTP GET/POST serving.
  34. ** License: see jnetlib.h
  35. ** This class just manages the http reply/sending, not where the data 
  36. ** comes from, etc.
  37. */
  38.  
  39. #ifndef _HTTPSERV_H_
  40. #define _HTTPSERV_H_
  41.  
  42. #include "connection.h"
  43.  
  44. class JNL_HTTPServ
  45. {
  46.   public:
  47.     JNL_HTTPServ(JNL_Connection *con);
  48.     ~JNL_HTTPServ();
  49.  
  50.     int run(); // returns: < 0 on error, 0 on request not read yet, 1 if reading headers, 2 if reply not sent, 3 if reply sent, sending data. 4 on connection closed.
  51.  
  52.     char *geterrorstr() { return m_errstr;}
  53.  
  54.     // use these when state returned by run() is 2 
  55.     char *get_request_file(); // file portion of http request
  56.     char *get_request_parm(char *parmname); // parameter portion (after ?)
  57.     char *getallheaders() { return m_recvheaders; } // double null terminated, null delimited list
  58.     char *getheader(char *headername);
  59.  
  60.     void set_reply_string(char *reply_string); // should be HTTP/1.1 OK or the like
  61.     void set_reply_header(char *header); // i.e. "content-size: 12345"
  62.  
  63.     void send_reply() { m_reply_ready=1; } // send reply, state will advance to 3.
  64.  
  65.     ////////// sending data ///////////////
  66.     int bytes_inqueue() { if (m_state == 3 || m_state == -1 || m_state ==4) return m_con->send_bytes_in_queue(); else return 0; }
  67.     int bytes_cansend() { if (m_state == 3) return m_con->send_bytes_available(); else return 0; }
  68.     void write_bytes(char *bytes, int length) { m_con->send(bytes,length); }
  69.  
  70.     void close(int quick) { m_con->close(quick); m_state=4; }
  71.  
  72.     JNL_Connection *get_con() { return m_con; }
  73.  
  74.   protected:
  75.     void seterrstr(char *str) { if (m_errstr) free(m_errstr); m_errstr=(char*)malloc(strlen(str)+1); strcpy(m_errstr,str); }
  76.  
  77.     int m_reply_ready;
  78.     int m_state;
  79.  
  80.     char *m_errstr;
  81.     char *m_reply_headers;
  82.     char *m_reply_string;
  83.     char *m_recvheaders;
  84.     int   m_recvheaders_size;
  85.     char *m_recv_request; // either double-null terminated, or may contain parameters after first null.
  86.     JNL_Connection *m_con;
  87. };
  88.  
  89. #endif // _HTTPSERV_H_
  90.